/* Ultra-Minimalist Contact Page Styles */
.contact-section {
    padding: 160px 20px 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.contact-card-v2 {
    background: #161e2e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 32px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    transition: var(--transition);
}

.contact-card-v2:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px -20px rgba(56, 189, 248, 0.15);
}

.contact-card-v2 h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.contact-card-v2 p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Action Row for Equal Size Buttons */
.action-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.mailto-btn,
.whatsapp-btn {
    flex: 1;
    /* This makes them equal width */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 10px;
    /* Reduced side padding to ensure content fits */
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    height: 55px;
    /* Fixed height for perfect equality */
}

.mailto-btn {
    background: var(--primary);
    color: #fff;
}

.mailto-btn:hover {
    background: #0ea5e9;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(56, 189, 248, 0.4);
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.3);
}

.phone-link {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-decoration: none;
    transition: var(--transition);
}

.phone-link:hover {
    color: #fff;
}

/* Extra Info Styles */
.contact-extra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.info-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.info-pill i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-pill label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-pill span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

/* Social Platforms */
.social-platforms {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.platform-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    transition: var(--transition);
}

.platform-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    color: #fff;
}

.platform-btn.ln:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.platform-btn.gh:hover {
    background: #333;
    border-color: #333;
}

.platform-btn.tw:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

/* Responsive */
@media (max-width: 576px) {
    .contact-card-v2 {
        padding: 40px 20px;
    }

    .action-row {
        flex-direction: column;
    }

    .contact-extra-grid {
        grid-template-columns: 1fr;
    }
}